home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19960425-19960715 / 000286_news@columbia.edu _Sun Jun 23 11:12:10 1996.msg < prev    next >
Internet Message Format  |  1996-07-26  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id LAA01410 for <kermit.misc@watsun.cc.columbia.edu>; Sun, 23 Jun 1996 11:12:09 -0400 (EDT)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.5/8.7.3) id LAA27968 for kermit.misc@watsun; Sun, 23 Jun 1996 11:12:08 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: HELP:  random beeps at high speed connection
  8. Date: 23 Jun 1996 15:12:04 GMT
  9. Organization: Columbia University
  10. Lines: 39
  11. Message-ID: <4qjms4$r9u@apakabar.cc.columbia.edu>
  12. References: <4qiniu$s22@gaia.ns.utk.edu>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4qiniu$s22@gaia.ns.utk.edu>,
  16. Raymond Steven Kutai <rkutai@utkux.utk.edu> wrote:
  17. : I am using KERMIT 3.14 to connect to my UNIX account from home.
  18. : Recently I swithced from using the HAYES.SCR to ULTRA144.SCR.  I managed
  19. : to get connection.  I noticed there's some improvement in speed.
  20. : Problem is I kept getting some random beeps, and ramdom characters on
  21. : the screen.  I read the .BWR and .UPD files included with the Kermit
  22. : dist. and I found out that the random beeps and characters are due to
  23. : the high speed.  Further, I need to use flow control.  Well I did 'set
  24. : flow xon/xoff' and also tried 'set flow rcs/cts' but still getting the
  25. : beeps and random chars.  Is there anyway to solve this problem?
  26. :
  27. : My modem is Hayes Optima 9600.  BTW, things works fine at 9600bps, but I
  28. : want to make it work at 384000bps in order to take full advantage of the
  29. : modem capabilities.
  30. ULTRA144.SCR sets the speed to 38400 and sets Kermit's flow control to
  31. RTS/CTS and also sets the modem's flow control to RTS/CTS by giving it the
  32. command AT&K1&K3.  Therefore, assuming there are no imcompatibilities
  33. between the Ultra 14400 and the Optima 9600, everything is set up right.
  34.  
  35. You didn't say what kind of computer you have, or what operating system,
  36. or what kind of UART (serial port controller).  Beeps indicate a UART
  37. overrun -- that is, a character arrived before the previous character had
  38. been read.
  39.  
  40. This usually means (a) a slow computer, (b) an overloaded computer,
  41. (c) you are running Kermit under Windows 3.x, and/or (d) your PC has an
  42. unbuffered UART.
  43.  
  44. The solutions are: (a) get a faster computer, (b) don't run so many other
  45. applications or TSRs at the same time as Kermit, (c) run Kermit under DOS
  46. instead of Windows, and/or (d) replace your unbuffered (8250 or 14550)
  47. UART with a buffered (16550A) UART.
  48.  
  49. Or, as a last resort, since your computer can't keep up at 38400, use a
  50. lower speed, like 19200 or 9600 (as you are doing).
  51.  
  52. - Frank